1. |
Layout a template table using the same formatting that the final table should have. |
2. |
Bind the elements in the first row you want to replace to appropriate pieces of dynamic content. |
3. |
Select the table. |
4. |
Check the Replace Rows option in the Binding Details tab of the Dynamic Link palette. |
|
Product Type |
Price |
<% Product_Information.MoveFirst %>
<% while not Product_Information.EOF %>
<%=Product_Information.Value("Type")%> |
$<%=Product_Information.Value("Price")%> |
<% Product_Information.MoveNext %>
<% wend %>
|